ComponentOne PDF for .NET
CSJ2K.j2k.entropy.decoder Namespace / ByteInputBuffer Class / ByteInputBuffer Constructor / ByteInputBuffer Constructor(Byte[],Int32,Int32)
the input buffer.
the offset in the buffer of the first byte to read.
the maximum number of bytes to read from the buffer.

In This Topic
    ByteInputBuffer Constructor(Byte[],Int32,Int32)
    In This Topic
    Creates a new byte array input stream that reads data from the specified byte array. Up to length characters are to be read from the byte array, starting at the indicated offset.

    The byte array is not copied.

    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal buf() As Byte, _
       ByVal offset As Integer, _
       ByVal length As Integer _
    )
    public ByteInputBuffer( 
       byte[] buf,
       int offset,
       int length
    )

    Parameters

    buf
    the input buffer.
    offset
    the offset in the buffer of the first byte to read.
    length
    the maximum number of bytes to read from the buffer.
    See Also